Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
소프트웨어의 요구사항을 명확하게 정의하고 문서화한 것으로, 시스템의 기능, 비기능적인 요구사항, 제약사항 등을 상세하게 기술한 문서입니다.
테스트 코드를 작성함으로써, 소프트웨어가 의도한 대로 작동하는지를 검증할 수 있습니다. 개발자가 코드를 수정하거나 기능을 추가할 때, 테스트 코드를 실행하여 이전 기능들이 영향을 받는지 확인할 수 있습니다. 버그를 찾고 수정하는데 도움이 됩니다. 코드 품질을 향상시키는데 도움이 됩니다.
@SpringBootTest 어노테이션을 사용하면, 애플리케이션의 동작을 시뮬레이션하는 테스트를 작성할 수 있습니다.
@test 어노테이션을 사용하여 테스트 메소드를 작성하면, 해당 메소드를 실행하고 테스트 결과를 보고합니다.
Mockito는 쉬운 사용법과 다양한 기능을 제공하여 테스트 코드 작성을 간편하게 해줍니다.
여러 개의 assert를 그룹으로 묶어서 실행하는 메소드입니다.